home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / laptop-mode-tools.postinst < prev    next >
Text File  |  2009-10-06  |  623b  |  23 lines

  1. #!/bin/sh -e
  2.  
  3. if [ "$1" = configure ]; then
  4.     # create a default file for disabling laptop-mode on powerpc, since there
  5.     # is no acpi-support package to do it for us
  6.     F=/etc/default/laptop-mode
  7.     if [ ! -e $F ] && [ "`uname -m`" = ppc ]; then
  8.        echo 'ENABLE_LAPTOP_MODE=false' > $F
  9.     fi
  10. fi
  11.  
  12. # Automatically added by dh_installinit
  13. if [ -x "/etc/init.d/laptop-mode" ]; then
  14.     update-rc.d laptop-mode defaults 99 >/dev/null
  15.     if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
  16.         invoke-rc.d laptop-mode start || exit $?
  17.     else
  18.         /etc/init.d/laptop-mode start || exit $?
  19.     fi
  20. fi
  21. # End automatically added section
  22.  
  23.